home *** CD-ROM | disk | FTP | other *** search
- SCREEN 0, 1, 0, 0:CLS
- DEF SEG = &HB800
- FOR X = 0 TO 15 'This loop sets all the palettes to black
- PALETTE X, 0
- NEXT
- BLOAD "char.DAT", 0 'The name of your screen goes here
- CNT = -1
- FOR X = 4001 TO 4016 'This loop sets the saved palettes
- CNT = CNT + 1
- PALETTE CNT, PEEK(X)
- NEXT
- holdscreen:
- i$ = INKEY$
- IF i$ = "" THEN GOTO holdscreen
-
-
-
-